Some Flexbox Terms…

display: flex;   /* as opposed to ‘display: block;’ or ‘display: inline;’ – makes your container flexible! */ flex-direction: row; (column;)  /*adjust the main axis to be vertical or horizontal */ flex-wrap: wrap / no-wrap  /*allow content to wrap inside a fixed-width container */ flex-flow: row wrap /*combines the above two rules! */ flex-shrink: 0/1   /*allow or disallow content to shrink … Continue reading Some Flexbox Terms…